home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990422-19990725 / 000305_news@columbia.edu _Tue Jul 20 10:25:13 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA07019
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 20 Jul 1999 10:25:12 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA18411
  7.     for kermit.misc@watsun.cc.columbia.edu; Tue, 20 Jul 1999 10:04:41 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: set translation input command in Kermit 95?
  11. Date: 20 Jul 1999 14:04:41 GMT
  12. Organization: Columbia University
  13. Message-ID: <7n1vlp$hv8$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <Pine.SUN.3.96.990720095136.21381A-100000@asterix>,
  17. Rok Zevnik  <zevnik@asterix.ijs.si> wrote:
  18. : Maybe there's just another problem. That everything which runs on that
  19. : host computer is made so that converts these characters in {}[]. And this
  20. : is a lot of source to edit. So we have tomake changes on the client side.
  21. You said earlier:
  22.  
  23. > On the host computer (RS/6000, AIX4.2) we have latin2-iso character set
  24. > and the client (PC, Win95) is using CP1250.
  25. >
  26. And of course Kermit 95 fully supports this combination:
  27.  
  28.   set terminal remote-character-set latin2
  29.   set terminal local-character-set cp1250
  30.  
  31. > But because the terminal which
  32. > is connected on the host doesn't recognize the iso2 standart we are not
  33. > allowed to use any of our native characters so we are running a script
  34. > which converts that characters to '[]{}'. And we would like to see this
  35. > characters to display correctly as =E8=E6=BE=F0 on our client.
  36. >
  37. So why don't you just remove the script?
  38.  
  39. What is the character set?  Substitution of "national characters" for
  40. "{}[]\|" is a method used in 7-bit ISO 646 character sets.  We are aware
  41. of only one such set for Eastern Europe, namely the Hungarian version of
  42. ISO 646.  Kermit 95 supports this set already with:
  43.  
  44.   set terminal remote-character-set hungarian
  45.  
  46. Try that and see how it works.
  47.  
  48. If it doesn't interpret the {}[]\| characters properly for your language
  49. (Slovenian?) then please send us the details of your character set.
  50.  
  51. : Maybe this solution would be useful if I set on client side that
  52. : host computer uses cp437 and then with set key command translate outgoing
  53. : characters in []{} but this is just half of the sollution because native
  54. : signs will be printed alright but on display they won't see them.
  55. There was a long discussion about this a few months ago, but unfortunately
  56. I can't find the correspondence.  The short answer is that SET TRANSLATION
  57. INPUT was a very bad idea because it did not fit the ISO 2022 character-set
  58. invocation and designation model.  As you may know, Kermit can switch among
  59. many character sets during a session based on escape sequences from the host.
  60.  
  61. In this setting, SET TRANSLATION INPUT makes no sense.  Which character set
  62. does it apply to?  What is Kermit supposed to do when told to switch to
  63. another character set?
  64.  
  65. - Frank